home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / snoc.6 < prev    next >
Text File  |  1996-07-16  |  335b  |  19 lines

  1. .TH SNOC
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. SNOC
  5.  
  6.  
  7.  
  8.  SNOC( AnyType Object, ListType ListObject )
  9.  
  10. Similar to the lisp cons operator but puts the new Object in the
  11. end of the list ListObject instead of the beginning, in place.
  12.  
  13. Example:
  14.  
  15.     Lst = list( axes );
  16.     SNOC( Srf, Lst );
  17.  
  18. and now Lst is equal to the list 'list( axes, Srf )'.
  19.